home *** CD-ROM | disk | FTP | other *** search
- #
- # AIX3/options.mk --- Part of Makefile for PFE, compiler options for AIX 3.x
- #
-
- # You can use gcc or the IBM xlc compiler.
- # The IBM compiler has problems with function pointers sometimes. The critical
- # sections are #ifdef'd in the source. These workarounds cause some harmless
- # warnings.
- # No problem with gcc which is faster anyway due to the global register
- # variables.
-
- PREFIX = /usr/local
- PFELIB = $(PREFIX)/lib/pfe
- PFEHLP = $(PFELIB)/help
-
- SYSTEM = AIX3
-
- CC = gcc -pipe -Wall
- OPTIM = -O2 -fomit-frame-pointer -DUSE_REGS
- DEBUG = -g -O
-
- #CC = cc
- #OPTIM = -O3
- #DEBUG = -g
-
- CL = $(CC)
- CPP = $(CC) -E
-
- OPTIONS =
- STRIP = -s
- TERM_O = termunix$o
- SYS_O = unix$o
- LFLAGS =
- LIBS = -lcurses -lm
-
-
-